From 9e300e0ff0c9d93cbaeaa86c1e2a560523107382 Mon Sep 17 00:00:00 2001 From: Sebastien Castiel Date: Mon, 29 Jan 2024 22:37:13 -0500 Subject: Use React’s cache to avoid some queries to the database MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/groups/[groupId]/expenses/[expenseId]/edit/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/app/groups/[groupId]/expenses/[expenseId]/edit') diff --git a/src/app/groups/[groupId]/expenses/[expenseId]/edit/page.tsx b/src/app/groups/[groupId]/expenses/[expenseId]/edit/page.tsx index 8455d4d..65b2b50 100644 --- a/src/app/groups/[groupId]/expenses/[expenseId]/edit/page.tsx +++ b/src/app/groups/[groupId]/expenses/[expenseId]/edit/page.tsx @@ -1,9 +1,9 @@ +import { cached } from '@/app/cached-functions' import { ExpenseForm } from '@/components/expense-form' import { deleteExpense, getCategories, getExpense, - getGroup, updateExpense, } from '@/lib/api' import { expenseFormSchema } from '@/lib/schemas' @@ -21,7 +21,7 @@ export default async function EditExpensePage({ params: { groupId: string; expenseId: string } }) { const categories = await getCategories() - const group = await getGroup(groupId) + const group = await cached.getGroup(groupId) if (!group) notFound() const expense = await getExpense(groupId, expenseId) if (!expense) notFound() -- cgit v1.3